home *** CD-ROM | disk | FTP | other *** search
/ Merciful 2 / Merciful - Disc 2.iso / software / i / imagefxv2.1a.lha / ImageFX / Rexx / AutoFX / Load.ifx < prev    next >
Text File  |  1996-03-02  |  300b  |  21 lines

  1. /*
  2.  *    Load.ifx
  3.  *    Loads the main and swap images.  (Doesn't
  4.  *    load the swap image if none is specified).
  5.  *
  6.  *    by Steve Tibbett
  7.  */
  8.  
  9. OPTIONS RESULTS
  10.  
  11. MainName=word(Arg(1),2)
  12. SwapName=word(Arg(1),3)
  13.  
  14. LoadBuffer Force MainName
  15.  
  16. IF (SwapName ~= "-") THEN DO
  17.     Swap
  18.     LoadBuffer Force SwapName
  19.     Swap
  20.     END
  21.